* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* HERO SECTION */
.simple-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* BREADCRUMB */
.breadcrumb-bar {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 16px 25px;
    font-size: 18px;
    z-index: 10;
}

.breadcrumb-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-bar span {
    margin: 0 5px;
}

.hero-img {
    height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

/* TEXT CENTER */
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 180px 20px 0px;
    background: rgba(0, 0, 0, 0.55); /* light overlay */
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff7a2f;
}

.hero-text p {
    font-size: 35px;
    font-weight: 400;
    max-width: 90%;
}

/* Images */
.hero-1 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-2 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-3 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}

/* Responsive */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .breadcrumb-bar {
        font-size: 12px;
        left: 15px;
        bottom: 15px;
    }
}

/* ================= ARROWS ================= */
.custom-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff7a2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-arrow:hover {
    background: #ff7a2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 122, 47, 0.6);
}

/* Position Fix */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Doctor Section */

.doctor-hero {
    width: 100vw;
    min-height: 80vh;
    background: linear-gradient(135deg, #ff6a88 0%, #ffb86c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}
.doctor-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}
.doctor-title-main {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
.doctor-title-sub {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6a88;
    letter-spacing: 1px;
}
.doctor-hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 1.5rem 0 1rem 0;
    color: #fff;
}
.doctor-hero p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
}
.doctor-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.doctor-btn {
    padding: 0.9rem 2.2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.doctor-btn-pink {
    background: #ff6a88;
    color: #fff;
    box-shadow: 0 4px 24px 0 rgba(255, 106, 136, 0.2);
}
.doctor-btn-pink:hover {
    background: #ffb86c;
    color: #fff;
}
.doctor-btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.doctor-btn-outline:hover {
    background: #fff;
    color: #ff6a88;
}
.doctor-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.doctor-hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}
.doctor-hero-stats .stat i {
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, #ff6a88 0%, #ffb86c 100%);
    border-radius: 50%;
    padding: 0.7rem;
    box-shadow: 0 2px 12px 0 rgba(255, 106, 136, 0.15);
}
.doctor-hero-stats .stat span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.doctor-hero-arrow {
    margin-top: 2.5rem;
    font-size: 2.5rem;
    color: #fff;
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}
@media (max-width: 700px) {
    .doctor-hero-content {
        max-width: 95vw;
    }
    .doctor-title-main,
    .doctor-title-sub {
        font-size: 2.2rem;
    }
    .doctor-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}
.doctor-mission {
    background: #faf9f6;
    padding: 60px 0 60px 0;
    text-align: center;
    overflow: hidden;
}
.doctor-mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}
.doctor-mission-desc {
    color: #3a3a3a;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}
.doctor-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.doctor-mission-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 24px 0 rgba(255, 106, 136, 0.1);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.doctor-mission-card:hover {
    box-shadow: 0 12px 32px 0 rgba(255, 184, 108, 0.18);
    transform: translateY(-6px) scale(1.03);
}
.doctor-mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a88 0%, #ffb86c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(255, 106, 136, 0.15);
}
.doctor-mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}
.doctor-mission-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .doctor-mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .doctor-mission-grid {
        grid-template-columns: 1fr;
    }
    .doctor-mission-title {
        font-size: 2rem;
    }
}
.doctor-join-mission {
    background: #faf9f6;
    padding: 40px 0 60px 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.doctor-join-mission-content {
    background: linear-gradient(90deg, #ff6a88 0%, #ffb86c 100%);
    border-radius: 32px;
    max-width: 1200px;
    width: 90vw;
    margin: 0 auto;
    padding: 48px 24px 40px 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 6px 32px 0 rgba(255, 106, 136, 0.1);
}
.doctor-join-mission-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.doctor-join-mission-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.doctor-join-btn {
    display: inline-block;
    background: #fff;
    color: #ff6a88;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.9rem 2.5rem;
    border-radius: 2rem;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
    box-shadow: 0 2px 12px 0 rgba(255, 106, 136, 0.1);
}
.doctor-join-btn:hover {
    background: #ffb86c;
    color: #fff;
}
@media (max-width: 700px) {
    .doctor-join-mission-content {
        padding: 32px 8px 28px 8px;
        font-size: 1rem;
    }
    .doctor-join-mission-content h2 {
        font-size: 1.3rem;
    }
}

.doctor-services {
    background: #fff;
    padding: 60px 0 60px 0;
    text-align: center;
    overflow: hidden;
}
.doctor-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}
.doctor-services-desc {
    color: #3a3a3a;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}
.doctor-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.doctor-services-card {
    background: #faf9f6;
    border-radius: 20px;
    box-shadow: 0 6px 24px 0 rgba(255, 106, 136, 0.1);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.doctor-services-card:hover {
    box-shadow: 0 12px 32px 0 rgba(255, 184, 108, 0.18);
    transform: translateY(-6px) scale(1.03);
}
.doctor-services-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a88 0%, #ffb86c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(255, 106, 136, 0.15);
}
.doctor-services-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}
.doctor-services-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}
.doctor-services-list {
    margin: 1.2rem 0 0 0;
    padding-left: 1.2rem;
    list-style: none;
}
.doctor-services-list li {
    background: linear-gradient(90deg, #ff6a88 0%, #ffb86c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2em;
}
.doctor-services-list li::before {
    content: "\2022";
    color: #ff6a88;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 900px) {
    .doctor-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .doctor-services-grid {
        grid-template-columns: 1fr;
    }
    .doctor-services-title {
        font-size: 2rem;
    }
}
.doctor-impact {
    background: #faf9f6;
    padding: 60px 0 40px 0;
    text-align: center;
    overflow: hidden;
}
.doctor-impact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}
.doctor-impact-desc {
    color: #3a3a3a;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}
.doctor-impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
}
.doctor-impact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 24px 0 rgba(255, 106, 136, 0.1);
    padding: 2.2rem 2.5rem 1.7rem 2.5rem;
    min-width: 180px;
    flex: 1 1 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.doctor-impact-card:hover {
    box-shadow: 0 12px 32px 0 rgba(255, 184, 108, 0.18);
    transform: translateY(-6px) scale(1.03);
}
.doctor-impact-icon.impact-pinkorange {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a88 0%, #ffb86c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(255, 106, 136, 0.15);
}
.doctor-impact-number {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
}
.doctor-impact-label {
    color: #444;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .doctor-impact-stats {
        flex-direction: column;
        align-items: center;
    }
    .doctor-impact-card {
        max-width: 350px;
        width: 70%;
    }
}

.doctor-action {
    background: #fff;
    padding: 40px 0 40px 0;
    text-align: center;
    overflow: hidden;
}
.doctor-action-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.doctor-action-card {
    background: #faf9f6;
    border-radius: 20px;
    box-shadow: 0 6px 24px 0 rgba(255, 106, 136, 0.1);
    overflow: hidden;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.doctor-action-card:hover {
    box-shadow: 0 12px 32px 0 rgba(255, 184, 108, 0.18);
    transform: translateY(-6px) scale(1.03);
}
.doctor-action-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.doctor-action-content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    text-align: left;
}
.doctor-action-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6a88 0%, #ffb86c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
.doctor-action-content p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .doctor-action-grid {
        flex-direction: column;
        align-items: center;
    }
    .doctor-action-card {
        width: 95vw;
        max-width: 400px;
    }
}

.doctor-testimonials {
    background: #faf9f6;
    padding: 40px 0 60px 0;
    text-align: center;
    overflow: hidden;
}
.doctor-testimonials-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2.5rem;
}
.doctor-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.doctor-testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 24px 0 rgba(255, 106, 136, 0.1);
    padding: 2.2rem 2rem 1.7rem 2rem;
    min-width: 320px;
    max-width: 370px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.doctor-testimonial-card:hover {
    box-shadow: 0 12px 32px 0 rgba(255, 184, 108, 0.18);
    transform: translateY(-6px) scale(1.03);
}
.doctor-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.1rem;
}
.doctor-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6a88;
}
.doctor-testimonial-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #222;
}
.doctor-testimonial-role {
    color: #888;
    font-size: 0.98rem;
}
.doctor-testimonial-quote {
    color: #444;
    font-size: 1.08rem;
    margin-top: 0.7rem;
    text-align: left;
}
@media (max-width: 1100px) {
    .doctor-testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
    .doctor-testimonial-card {
        max-width: 95vw;
        width: 70%;
        min-width: unset;
    }
}
